home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / Sample Code / Snippets / Development Tools & Languages / Bits o' MacApp Code / Windows Menu / WindowsMenu.r < prev   
Encoding:
Text File  |  1993-06-10  |  374 b   |  15 lines  |  [TEXT/MPS ]

  1. // Be sure to define mWindows, cCascade and cCloseAll somewhere.
  2.  
  3. resource 'CMNU' (mWindows) {    // Windows
  4.     mWindows,
  5.     textMenuProc,
  6.     allEnabled,
  7.     enabled,
  8.     "Windows",
  9.      {
  10.     /* [1] */    "Cascade",                 noIcon, noKey,  noMark, plain, cCascade;
  11.     /* [2] */    "Close All",             noIcon, noKey,  noMark, plain, cCloseAll;
  12.     /* [3] */    "-",                    noIcon,    noKey,    noMark,    plain,    nocommand;
  13.     }
  14. };
  15.